寫什麼腳本,遊戲的還是軟體的?功能要求是什麼樣的。

寫腳本三年多,不知道能不能滿足你的要求


先試用 有案例 說不定你需要的有成品 dd


這個市場體量太小了,沒有什麼成規模的代寫平台。

一般需要去加對應腳本開發工具的交流群,在群里找找代寫的腳本作者。

ps:請注意防騙。


你得有具體的要求 是手機腳本 還是 電腦腳本 是想實現功能就好 還是要有界面 有前後端高級點 ,要不要源碼,想要實現什麼功能等等… 最好有個需求文檔,不然你這樣沒辦法幫到你。


腳本寫起來不難

看你想要用腳本做什麼事情了

腳本其實就是為了解決重複的手工操作而產生的

這個東西怎麼寫呢?

其實並不難

首先,安裝酷安應用市場,然後搜索auto.js下載安裝Auto.js手機端

接下來開始安裝開發環境

安裝下載Visual Studio Code

https://code.visualstudio.com/

下載安裝後 ,安裝 擴展

如果有這方面需求的,可以來找我交流,我自己平時有寫很多這方面的腳本

你可以來看看有沒有你需要的

參考下圖找我

import numpy as np

import pandas as pd

import matplotlib.pyplot as plt

# 1. simple plot with 4 numbers

plt.plot([1, 3, 2, 4])

plt.show()

# 2. points have x and y values; add title and axis labels

plt.plot([1, 2, 3, 4], [1, 4, 9, 16])

plt.title(Test Plot, fontsize=8, color=g)

plt.xlabel(number n)

plt.ylabel(n^2)

plt.show()

# 3. change figure size. plot red dots; set axis scales x: 0-6 and y: 0-20

plt.figure(figsize=(1,5)) # 1 inch wide x 5 inches tall

plt.plot([1, 2, 3, 4], [1, 4, 9, 16], ro) # red-o

plt.axis([0, 6, 0, 20]) # [xmin, xmax, ymin, ymax]

plt.annotate(square it, (3,6))

plt.show()

# 4. bar chart with four bars

plt.clf() # clear figure

x = np.arange(4)

y = [8.8, 5.2, 3.6, 5.9]

plt.xticks(x, (Ankit, Hans, Joe, Flaco))

plt.bar(x, y)

# plt.bar(x, y, color=y)

# plt.bar(x, y, color=[lime, r, k, tan])

plt.show()

# 5. two sets of 10 random dots plotted

d = {Red O : np.random.rand(10),

Grn X : np.random.rand(10)}

df = pd.DataFrame(d)

df.plot(style=[ro,gx])

plt.show()

# 6. time series - six months of random floats

ts = pd.Series(np.random.randn(180), index=pd.date_range(1/1/2018, periods=180))

df = pd.DataFrame(np.random.randn(180, 3), index=ts.index, columns=list(ABC))

df.cumsum().plot()

plt.show()

# 7. random dots in a scatter

N = 50

x = np.random.rand(N)

y = np.random.rand(N)

colors = np.random.rand(N)

sizes = (30 * np.random.rand(N))**2 # 0 to 15 point radii

plt.scatter(x, y, s=sizes, c=colors, alpha=0.5)

plt.show()


有人寫腳本嗎


怎麼能聯繫到你?


遊戲?推廣?引流?按鍵就可以了 比較簡單。


百度一下 碼市 。可能對你有幫助


190700084 我是作者 需要找我 圖色協議都行


推薦閱讀:
相关文章